home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / 80X86 / AMISL092.ZIP / TSRS.DOC < prev    next >
Encoding:
Text File  |  1995-09-24  |  4.0 KB  |  156 lines

  1. Alternate Multiplex Interrupt Specification Sample Programs
  2. Public Domain 1992,1995 Ralf Brown
  3. Version 0.92
  4. LastEdit: 9/24/95
  5.  
  6. ------------------------------------------------------------------------
  7.  
  8. AMITSRS
  9.     list currently-installed TSRs using the alternate multiplex interrupt
  10.  
  11. Usage:    AMITSRS
  12.         list manufacturer, name, and description of each TSR
  13.  
  14.     AMITSRS <anything>
  15.         verbose listing; adds a second line with TSR version
  16.         and private entry point (if any), a third line
  17.         detailing the number of hotkeys and how checked, and
  18.         additional lines listing the hotkeys (if any).
  19.  
  20. ------------------------------------------------------------------------
  21.  
  22. FASTMOUS
  23.     convert slow (on some systems) mouse hardware reset call into
  24.     mouse software reset call.
  25.  
  26. Usage:    FASTMOUS
  27.         install FASTMOUS
  28.  
  29.     FASTMOUS R
  30.         remove FASTMOUS from memory
  31.  
  32. Resident Size: 128 bytes
  33.  
  34. ------------------------------------------------------------------------
  35.  
  36. NOLPT
  37.     turn a parallel port into a bit bucket by making it appear to
  38.     always be ready for output and ignoring any output calls.
  39.  
  40. Usage:    NOLPT n
  41.         install NOLPT on LPTn
  42.  
  43.     NOLPT nU
  44.         remove (uninstall) NOLPT from LPTn
  45.  
  46. Resident Size: 192/240 bytes (high/low)
  47.  
  48. ------------------------------------------------------------------------
  49.  
  50. NOTE
  51.     popup one-line note taker
  52.  
  53. Usage:    NOTE -Ifile
  54.         install NOTE, using <file> as the notepad
  55.  
  56.     NOTE -R
  57.         remove NOTE from memory
  58.  
  59. Note:    NOTE keeps the notepad file open as long as it remains
  60.     resident, in order to reduce the size of the resident code and
  61.     data.  The file is open in write-only deny-none mode, which
  62.     allows other programs using the correct sharing modes (such as
  63.     LIST.COM and 4DOS) to access the notepad.  Unfortunately,
  64.     COMMAND.COM does *NOT* use any sharing modes, even in version
  65.     6.22--three major releases after sharing modes were introduced!
  66.     Thus you will get a sharing violation if you attempt to TYPE
  67.     or COPY the notepad using COMMAND.COM while NOTE is loaded.
  68.  
  69. Resident Size: 2160/2224 bytes (high/low with generic hotkey handler)
  70.            2080/2144 bytes (high/low with custom hotkey handler)
  71.  
  72. ------------------------------------------------------------------------
  73.  
  74. POPUP
  75.     request that a specified TSR pop itself up if it supports that
  76.     operation
  77.  
  78. Usage:    POPUP <tsrname>
  79.  
  80.     POPUP <manufacturer> <tsrname>
  81.  
  82. Note:    both <manufacturer> and <tsrname> may be abbreviated; if more
  83.     than one TSR matches, the matching TSRs will be listed.
  84.  
  85. ------------------------------------------------------------------------
  86.  
  87. RBKEYSWP
  88.     swap Esc and tilde/backquote keys as well as LeftControl and
  89.     CapsLock keys
  90.  
  91. Usage:    RBKEYSWP I
  92.         install in memory
  93.  
  94.     RBKEYSWP R
  95.         remove from memory
  96.  
  97. ------------------------------------------------------------------------
  98.  
  99. REMOVE
  100.     remove one or more TSRs from memory
  101.  
  102. Usage:    REMOVE *
  103.  
  104.     REMOVE <tsrname>
  105.  
  106.     REMOVE <manufacturer> <tsrname>
  107.  
  108. Note:    both <manufacturer> and <tsrname> may be abbreviated; if more
  109.     than one TSR matches, you will be prompted whether to remove
  110.     all matching TSRs.  REMOVE * removes all AMIS-compliant TSRs.
  111.  
  112. ------------------------------------------------------------------------
  113.  
  114. SWITCHAR
  115.     provide switch-character support which was removed from MSDOS 5.0
  116.  
  117. Usage:    SWITCHAR I
  118.         install
  119.  
  120.     SWITCHAR R
  121.         remove from memory
  122.  
  123.     SWITCHAR D
  124.         disable switchar calls
  125.  
  126.     SWITCHAR E
  127.         enable switchar calls
  128.  
  129.     SWITCHAR <x>
  130.         set switch character to <x>
  131.  
  132. Resident Size: 224/288 bytes (high/low)
  133.  
  134. ------------------------------------------------------------------------
  135.  
  136. VGABLANK
  137.     VGA-specific screen blanker
  138.  
  139. Usage:    VGABLANK n
  140.         install, setting blanking interval to <n> minutes
  141.         or if already installed, change blanking time
  142.  
  143.     VGABLANK R
  144.         remove from memory
  145.  
  146. Resident Size: 208 bytes
  147.  
  148. ------------------------------------------------------------------------
  149.  
  150.     Ralf Brown            [valid until at least May 1, 1996]
  151.     813 Copeland Way, Suite 26
  152.     Pittsburgh, PA 15232
  153.  
  154.     Ralf Brown 1:129/26.1
  155.     ralf@pobox.com (currently forwards to ralf@telerama.lm.com)
  156.